// JavaScript Document

function openWindow(url,type)
{
	if(type == "full") window.open(url,"site","left = 0, top = 0, height="+screen.availHeight+", width="+screen.availWidth+", scrollbars = yes");
	else if(type == "trailer")  window.open(url,"trailer","left = 0, top = 0, height=328, width=400, scrollbars = no");
}