
function openwin(href,name,width,height,scroll) {
	window.open(href, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable=no,copyhistory=yes,top=30,left=30,width=' + width +',height=' + height);
}
function openWindow(url,name,scroll,width,height,top,left) 
{
	var objwin = window.open(url,name, 'scrollbars='+scroll+',width='+width+',height='+height+',top='+top+',left='+left)
	objwin.focus()
}

function openVanillaWindow(href,name,width,height,scroll) {
	var objwin = window.open(href, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable=yes,copyhistory=yes,top=30,left=30,width=' + width +',height=' + height);
	 objwin.focus()
}
var itvwindow;

function OpenF1Blog() 
{
    itvwindow = window.open('http://blog.itv.com/f1');
}