// JavaScript Document

function showDemo() {
	width = 360
	height = 280
	xl = (screen.availWidth/2)-(width/2)
	tt = (screen.availHeight/2)-(height/2)
	var winDemo = window.open('/demo.asp', 'demo','toolbar=no,scrolling=no,resizable=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,width='+width+',height='+height+',left='+xl+',top='+tt);
	winDemo.focus()

}

function showVideo(url) {
	width = 480
	height = 330
	xl = (screen.availWidth/2)-(width/2)
	tt = (screen.availHeight/2)-(height/2)
	var winDemo = window.open(url, 'demo','toolbar=no,scrolling=no,resizable=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,width='+width+',height='+height+',left='+xl+',top='+tt);
	winDemo.focus()

}

function showPage(url) {
	width = 600;
	height = 400;
	xl = (screen.availWidth/2)-(width/2)
	tt = (screen.availHeight/2)-(height/2)
	var winpage = window.open(url, 'page','toolbar=no,scrolling=auto,resizable=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,width='+width+',height='+height+',left='+xl+',top='+tt);
	winpage.focus()

}
