// JavaScript Document

function winClose() {
	window.close();
}

function winOpen(url) {
	var win = window.open(url , "newwindow" , "width=600,height=530,scrollbars = yes");
	win.focus();
}

function winOpen2(url,int) {
	var win = window.open(url , "newwindow" , "width=420,height=" + int);
	win.focus();
}

function acc(){
	document.write("<img src='http://cyoiprint.com/acc/acclog.cgi?");
	document.write("referrer="+document.referrer+"&");
	document.write("width="+screen.width+"&");
	document.write("height="+screen.height+"&");
	document.write("color="+screen.colorDepth+"'>");
}
