var myresize = 0;
function popup(url)
{
	if (arguments.length == 2)
	{
		winec = window.open(url, 'winec', 'top=0,left=0,width='+screen.width+',height='+ (screen.height - 60) +',scrollbars,resizable');
	}
	else
	{
		winec = window.open(url, 'winec', 'top='+(screen.height-500)/2+',left='+(screen.width-640)/2+',width=640,height=500,scrollbars'+(myresize == 1 ? ",resizable":""));
	}

	if (winec != null)
	{
		winec.focus();
	}
}
function introcamera(id)
{
	window.open('cameraintro.asp?Id='+id, 'cameraintro');
}