//POPUP for Images
function popup_window_img(page)
{ 
	new_window = this.open(page, "zoom_img", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=450,height=450"); 
}
	
//POPUP for CART	
function popup_window_cart(page)
{ 
	new_window = this.open(page, "zoom_cart", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=680,height=850"); 
} 

//POPUP for PRODUCT DETAILS
function popup_window(page)
{ 
	new_window = this.open(page, "entersys", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=680,height=450"); 
} 

//POPUP for TERMS & CONDITIONS
function popup_window_condition(page)
{ 
	new_window = this.open(page, "term_condition", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=680,height=450"); 
} 

//POPUP for ORDER PLACING 
function popup_window_PlaceOrder(page)
{ 
	new_window = this.open(page, "order", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=680,height=450"); 
} 

//POPUP for DELETE CONFERMATION
function ask_yes_no($url)
{
	question = confirm("Are you sure you want to delete this order?")
	if(question!="0"){
		location = $url;
		return(true);
	}
}