﻿// JScript File

function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
function OpenPopup(targetUrl)
{
        //ContactUs
        //var targetUrl = "contact_pop.aspx";
        
             
				var leftpos=(screen.width/2)-(390/2);
				var toppos=(screen.height / 2)-(435/2);
				
            var windowprops="width=610,height=500,scrollbars=yes,menubars=no,resizable=yes,left="+leftpos+",top="+toppos
				popupWindow =window.open(targetUrl,"Preview",windowprops);
      
}

function SendEmail(url)
{

    //var prdId = document.getElementById("ctl00_ContentPlaceHolder1_hdf_ProductID");
     var targetUrl = "EmailProductToFriend.aspx?act="+url;
    
     
     
    // alert(dirname);
			 //targetUrl = targetUrl+"prdId="+ prdId.value+type
				var leftpos=(screen.width/2)-(390/2);
				var toppos=(screen.height / 2)-(435/2);
				
            var windowprops="width=650,height=500,scrollbars=yes,menubars=no,resizable=yes,left="+leftpos+",top="+toppos
				popupWindow =window.open(targetUrl,"SendEmail",windowprops);
}

function ViewLargImage()
{
        var img =document.getElementById("ctl00_ContentPlaceHolder1_hfd_image");
        var prd_name = document.getElementById("ctl00_ContentPlaceHolder1_hdf_productName")
        
         
        var targetUrl = "ViewImage.aspx?";
        
        targetUrl = targetUrl+"img_name="+ img.value+"&"+"product_name="+prd_name.value
       
				var leftpos=(screen.width/2)-(390/2);
				var toppos=(screen.height / 2)-(435/2);
				
            var windowprops="width=610,height=500,scrollbars=yes,menubars=no,resizable=yes,left="+leftpos+",top="+toppos
				popupWindow =window.open(targetUrl,"Preview",windowprops);
     
}

function ContactUs()
{
        var targetUrl = "contact_pop.aspx";
        
             
				var leftpos=(screen.width/2)-(390/2);
				var toppos=(screen.height / 2)-(435/2);
				
            var windowprops="width=610,height=500,scrollbars=yes,menubars=no,resizable=yes,left="+leftpos+",top="+toppos
				popupWindow =window.open(targetUrl,"Preview",windowprops);
      
}
function ReadDetail()
        {
             var targetUrl = "free_ship.aspx";        
             
				var leftpos=(screen.width/2)-(390/2);
				var toppos=(screen.height / 2)-(435/2);
				
            var windowprops="width=610,height=500,scrollbars=yes,menubars=no,resizable=yes,left="+leftpos+",top="+toppos
				popupWindow =window.open(targetUrl,"Preview",windowprops);
      
        }

    
    