function openwin()
{
 window.open("slide_show.html","","width=300, height=300");
}

function openmywin(src,w,h)
{
 var PopUpWin = window.open("","","width="+w+",height="+h); 
 PopUpWin.focus();
 PopUpWin.document.write("<html><title></title><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><img src="+src+" width="+w+" height="+h+" border=0 alt=''></body></html>");
 return;
}

function openPopup(src,w,h)
{
 var PopUpWin = window.open("","","width="+w+",height="+h); 
 PopUpWin.focus();
 PopUpWin.document.location = src;
 return;
}


function openmywintitle(src,w,h,title)
{
 var PopUpWin = window.open("","","width="+w+",height="+h); 
 PopUpWin.focus();
 PopUpWin.document.write("<html><title>"+title+"</title><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><img src="+src+" width="+w+" height="+h+" border=0 alt=''></body></html>");
 return;
}
