var NewWindow=null;

function ShowImage(ImgSource,ImgWidth,ImgHeight,Title,Alt) { 
	var WinLeft=Math.floor((screen.width-ImgWidth-10)/2);
        var WinTop=Math.floor((screen.height-ImgHeight-115)/2);

 	window.status='Click Here';
   	if (NewWindow!=null && !NewWindow.closed) {
		NewWindow.close();

	}

	var WinAppearence = 'scrollbars=no,width='+(ImgWidth+0)+',height='+(ImgHeight+0)+',top='+WinTop+',left='+WinLeft;
	var Hypertext = '<html><head><title>'+ Title +'</title><base href="'+location.href+'"></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="white" align=center><a href="" onClick="window.close();return false;"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" border="0" alt="' + Alt + '"></a>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
	NewWindow.focus();
}

function ShowImageSC(ImgSource,ImgWidth,ImgHeight,Title,Alt) { 
	var WinLeft=Math.floor((screen.width-ImgWidth-10)/2);
        var WinTop=Math.floor((screen.height-ImgHeight-115)/2);

 	window.status='Click Here';
   	if (NewWindow!=null && !NewWindow.closed) {
		NewWindow.close();

	}

	var WinAppearence = 'scrollbars=no,width='+(ImgWidth+0)+',height='+(ImgHeight+0)+',top='+WinTop+',left='+WinLeft;
	var Hypertext = '<html><head><title>'+ Title +'</title><base href="'+location.href+'"></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="white" align=center><a href="membership.php" target="_parent"><img width="' + ImgWidth + '" height="' + ImgHeight + '" src="' + ImgSource + '" border="0" alt="' + Alt + '"></a>';

   NewWindow=window.open( '','NewWindow',WinAppearence);
   NewWindow.document.writeln(Hypertext);
	NewWindow.focus();
}