<!-- Begin 
function openDiscounts() { 
var URL = "discount_popup.php?sp_id=" + spId; 
popup = window.open(URL,"openDiscounts",'width=300,height=200,resizable=yes, scrollbars=yes'); 
} 

// End --> 


<!-- Begin 
function viewBW() { 
var URL = "view_bw.php?image=" + viewImage +"&crid=" + crid; 
popup = window.open(URL,"viewBW",windowProps); 
} 

// End --> 

<!-- Begin 
function zoomImage() { 
var URL = "zoom.php?image=" + viewImage +"&crid=" + crid; 
popup = window.open(URL,"zoomImage",windowProps); 
} 

// End --> 

<!-- Begin 
function slideShow() { 
var URL = "slide_show.php?viewGallery=" + viewGallery +"&crid=" + crid; 
popup = window.open(URL,"slideShow",windowProps); 
} 

// End --> 

<!-- Begin 
function viewCrop() { 
var URL = "view_crop.php?image=" + viewImage +"&crid=" + crid +"&width=" + width +"&height=" + height +"&pg=" + pg+"&cpw=" + cpw+"&cph=" + cph; 
popup = window.open(URL,"viewBW",windowProps); 
} 

// End --> 

<!-- Begin 
function viewSEP() { 
var URL = "view_sep.php?image=" + viewImage +"&crid=" + crid; 
popup = window.open(URL,"viewBW",windowProps); 
} 

// End --> 

function showNotes(div_id) {
    // hide all the divs
	document.getElementById('notes').style.display = 'none';
    // show the requested div
    document.getElementById('notes').style.display = 'block';
}

function hideOptions(div_id) {
    document.getElementById(div_id).style.display = 'none';
}
function openClose(div1,div2) {
    document.getElementById(div2).style.display = 'none';
    document.getElementById(div1).style.display = 'block';
}
