// JavaScript Document
 function openImage( imgPath,label )
 {
	args 		= "width=600,height=500,resizable=1,scrollbars=1"; 
	remote 	= window.open( "imageViewer.php?p="+imgPath+"&l="+label,null,args );

	if ( remote != null ) {
		if ( remote.opener == null )
			remote.opener = self;

		remote.focus();
	}
 }
