var WIDTH = 320;

var HEIGHT = 550;

var cc;


function openWin(url, name, width, height) {

	return window.open(url, name, "width="+width+",height="+height+",toolbar=no,scrollbars=no,resizable=no");

}


function closeWin() {

	if (cc && cc.open)

		cc.close();

}


function openCC(id) {

	var url = "../scripts/getItem.asp?id=" + id;

	cc = openWin(url, "cc", WIDTH, HEIGHT);

}
