// COPYRIGHT 2004-2009 © Digital Art FL 
// Unauthorized use or sale of this script is strictly prohibited by law



var viewer 		= "same"	
var width 		= "800"		
var height 		= "625"		
var scrollbars		= "yes"		
var menu		= "no"		
var tool		= "no"		





// COPYRIGHT 2004-2009 © Digital Art FL 
// Unauthorized use or sale of this script is strictly prohibited by law







function ViewImage(data) {
   if (viewer == "popup") {
    windowHandle = window.open('image-viewer.htm' + '?' + data,'windowName',',scrollbars='+scrollbars+',resizable=yes,toolbar='+tool+',menubar='+menu+',width='+width+',height='+height+'');

}
else if (viewer == "new") {
    windowHandle = window.open('image-viewer.htm' + '?' + data,'windowName');
}
else if (viewer == "same") {
    window.location = ('image-viewer.htm' + '?' + data);
}
}

// END IMAGE VIEW CODE






// End -->
