/***********************************************************************
*
* ShowPopUp2    -  creates pop up window without address bar or scroll bars
*
* Input: sUrl    -  URL of page to display
*        iWidth  -  Width of window
*       iHeight  -  Height of window
*        sTitle  - Title at top of new popup window (i.e. product name)
*
*     Example:  href="javascript:ShowPopUp2('Remote_loopy2_gallery.1100.700.jpg',1100,700,’Remote Loopy’)" 
*
* Returns:        nothing
*
************************************************************************/

function ShowPopUp2(sUrl, iWidth, iHeight, sTitle)    {
	var colour = 'black';
	var newwindow;
	var pwidth = iWidth + 47;
	var pheight = iHeight + 37;

	newwindow=window.open('','PopUp','width=' + pwidth +',height=' +pheight + ',status=0, location=0, resizable=1, scrollbars=1');

newwindow.document.clear();
newwindow.document.writeln('<html> <head> <title>The GigRig - ' + sTitle + '<\/title> <\/head> <body bgcolor= \"' + colour + '\"> <center>');
newwindow.document.writeln('<img src=' + sUrl + '  title=\"' + sTitle + '\"   alt=\"' + sTitle + '\" >');
newwindow.document.writeln('<\/center> <\/body> <\/html>');
newwindow.document.close();
newwindow.focus();
}