function genericOpen(name,url,width,height)
{
	var genmesg = open(url,name,"toolbar=0,status=1,menubar=0,resizable=yes,scrollbars=yes,width="+width+",height="+height); 
}

function genericOpenNoScroll(name,url,width,height)
{
	var genmesg = open(url,name,"toolbar=0,status=1,menubar=0,resizable=no,scrollbars=no,width="+width+",height="+height); 
}


function openFavouritesWin(sessionid,area,prod_id,tablename,company,model,page)	
{
	var pst = "/cgi-bin/adframe/add_to_favourites?id="+sessionid+"&area="+area+"&prod_id="+prod_id+"&tablename="+tablename+"&company="+company+"&model="+model+"&page="+page+"";
open(pst,'AddToFavourites','width=233,height=97,directories=no,locationbar=no,menubar=no,status=no,scrollbars=no, toolbars=no');
}
