//tooltip
var timer = '';

function over(text) {
    window.status = text;
    return true;
}

function out() {
    window.status = '';
    return true;
}
//boscia
function itemPop(source){
newWindow = window.open("","product","toolbar=0,location=0,scrollbars=0,width=500,height=500,resizeable=0,left=50,top=50");
header = "<html><title>Product Detail</title><body><p align='center'>";
footer = "&nbsp;<br><a href="+'"'+"#"+'" ' + "onClick="+'"'+ "window.close();"+'" ' + "style=" +'"' +	"font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 10px;	font-weight: bold; color: #666666;	text-decoration: none;" + '"'+">Close</a></p></body></html>";
image = "<img src='"+source+"' border='0'>";

bod = header+image+footer;

newWindow.document.write(bod);
newWindow.document.close();
newWindow.focus();

}

function popup(source, caption){
	if(arguments.length == 1){
		caption="";
	}
	newWindow = window.open("","pop","toolbar=0,location=0,scrollbars=0,width=500,height=450,resizeable=0,left=50,top=50");
	header = "<html><body><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"2\" >&nbsp;<p align='center'>";
	image = "<img src='images/"+source+"' border='1'>";
	footer = caption + "&nbsp;<br><a href='#' onClick=" + '"' +"window.close();"+ '"' + "style=" + '"' + " 	font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 10px;	font-weight: bold; color: #666666;	text-decoration: none;"+'"' +">Close</a></p></font></body></html>";
	
	bod = header+image+footer;
	
	newWindow.document.write(bod);
	newWindow.document.close();
	newWindow.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
