//Script to open trailers (in the center of the screen)
//s = trailer file
//n = title
//w = width of trailer
//h = height of trailer
//c = web channel id 
function trailer(s,n,w,h)
{
	trailer(s,n,w,h,1);
}

function trailer(s,n,w,h,c)
{
	var width = 360;
	var height = 400;
	//Accomodate the player control
	height = h + 160;
	var l,t;
	l = parseInt((screen.width-width)/2);
	t = parseInt((screen.height-height)/2);
	if (l < 0)
		l = 0;
	if (t < 0)
		t = 0;
	window.open("http://www.madman.com.au/trailers/trailer.jsp?trailer="+s+"&title="+n+"&width="+w+"&height="+h+"&webChannelId="+c,"popup","toolbar=no,width="+width+",height="+height+",resizable=no, scrollbars=no, left="+l+", top="+t+"");
}
