// JavaScript Document


//launches video player
<!--
function wload(vurl) {
var load = window.open(vurl,'vidwin','scrollbars=yes,menubar=no,height=690,width=780,resizable=yes,toolbar=no,location=no,status=no'); 
load.window.focus(); 
//return false;
}
// -->



// quick clicks
<!-- 
function load(qurl) {
var load = window.open(qurl,'qclicks','scrollbars=yes,menubar=no,height=645,width=670,resizable=yes,toolbar=no,location=no,status=yes');  
load.window.focus(); 
//return false;
}
// -->


//launches tips window
<!--
function ttload(URL) {
var load = window.open(URL,'ff_tips','scrollbars=yes,menubar=no,height=500,width=670,resizable=yes,toolbar=no,location=no,status=yes');  
load.window.focus(); 
//return false;
}
// -->


<!--
function openSearchWindow()
{
	//this function takes the input of the search text box and then opens a new Microsoft Search window. The search is limited to the home magazine section.(www.microsoft.com/canada/home)
	strText = "http://search.microsoft.com/results.aspx?mkt=en-CA&q=site:www.microsoft.com/canada/home+" + headerform.qu.value;
	OpenWindow(strText);
	//alert('teswt1');
}


function OpenWindow(URL)
{
	window.open(URL,'_blank','toolbar=yes,location=no,directories=no,menubar=yes,status=no,scrollbars=yes,resizable=yes,width=700,height=400,top=50,left=50');
}
//-->
