function cmsys_edit(content) {
	window.open('phpcmsys/edit.php?content=' + content,'editwin','resizable=yes,scrollbars=yes,width=800,height=680');
}
function cmsys_tools(content) {
	window.open('phpcmsys/tools.php?content=' + content,'toolswin','width=260,height=220');
}
function cmsys_imgset(content) {
	window.open('phpcmsys/imgset.php?content=' + content,'editwin','resizable=yes,scrollbars=yes,width=900,height=720');
}
function cmsys_delete(content) {
	window.open('phpcmsys/delete.php?content=' + content,'toolswin','width=260,height=220');
}
function cmsys_undelete(content) {
	window.open('phpcmsys/undelete.php?content=' + content,'toolswin','width=1,height=1');
}
function cmsys_upload(content) {
	window.open('phpcmsys/upltxt.php?content=' + content,'toolswin','width=800,height=300');
}
function cmsys_buttonup(content) {
	window.open('phpcmsys/btnup.php?content=' + content,'toolswin','resizable=yes,scrollbars=yes,width=1,height=1');
}
function cmsys_buttondown(content) {
	window.open('phpcmsys/btndown.php?content=' + content,'toolswin','resizable=yes,scrollbars=yes,width=1,height=1');
}
function cmsys_start(content) {
	window.open('http://www.bonsite.nl/wslog.php?content='+content,'toolswin','width=1,height=1,top=1,left=1');
}
function cmsys_hrefset(content) {
	window.open('phpcmsys/hrefset.php?content=' + content,'editwin','resizable=yes,scrollbars=yes,width=800,height=680');
}
function Put_Cookie(c_name,c_value) {
	document.cookie = c_name + '=' + escape(c_value) + '; path=/'; 
	location.reload();
}
function Clear_Cookie(c_name,c_value) {
	document.cookie = c_name + '=' + escape(c_value) + '; expires=Fri, 31 Dec 1999 23:59:59 GMT;' + 'path=/'; 
	location.reload();
}
function Open_Window(p_confirm,p_confstr,p_file,p_content,p_width,p_height) {
	if (p_confirm == 'yes') {
		if (confirm(p_confstr)) {
			if (p_width == 0) {
				window.open(p_file + '.php?content=' + p_content,'editwin','resizable=yes,scrollbars=yes,status=yes');
			}
			else {
				window.open(p_file + '.php?content=' + p_content,'editwin','resizable=yes,scrollbars=yes,width=' + p_width + ',height=' + p_height);
			}
		}
	}
	else {
		if (p_width == 0) {
			window.open(p_file + '.php?content=' + p_content,'editwin','resizable=yes,scrollbars=yes,status=yes');
		}
		else {
			window.open(p_file + '.php?content=' + p_content,'editwin','resizable=yes,scrollbars=yes,width=' + p_width + ',height=' + p_height);
		}
	}
}

