function popWindow(url,windowname,width,height){var x;var y;var w;var h;if(document.all){if(document.body){x=screenLeft;y=screenTop;w=document.body.clientWidth;h=document.body.clientHeight;}else{x=0;y=0;w=screen.width;h=screen.height;}}else{x=screenX;y=screenY;w=outerWidth;h=outerHeight;}var nWidth=parseInt(width);var nHeight=parseInt(height);x=x+((w-nWidth)/2);y=y+((h-nHeight)/2);if((x+nWidth)>screen.width)x=screen.width-width-10;if((y+nHeight)>screen.height)y=screen.height-height-10;window1=window.open(url,windowname,"toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",top="+y+",left="+x);window1.moveTo(x,y);window1.resizeTo(width,height);window1.focus();}function openEmailFriend(url){var window1=window.open(url,"Email_Friend","toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=450,height=500");window1.focus();}function openVirtualTour(url){var window1=window.open(url,"VirtualTour","toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=760,height=570");window1.focus();}function loc(href){location.href=href;}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}