function openVideoWindowSize(url, width, height)
{
	window.open (url,'','location=0,status=0,scrollbars=0,width=' + width + ',height=' + height + ',left=250,top=250');
}

function openVideoWindowSizeScrollbars(url, width, height)
{
	window.open (url,'','location=0,status=0,scrollbars=1,width=' + width + ',height=' + height + ',left=250,top=250');
}
