function product_window() 
  {
       window.open('pages/add_product.php', '', 'width=820, height=800,scrollbars=yes');
  }



function conf(url) 
{
    if (confirm("Are you sure?")) 
        { 
            location.href=url 			
        } 
    else 
        { 
             /* do nothing */
        } 
}



pic_window = null;

function open_high (x,y,pic,katid)
{ 
	
	var uri = "../pages/showproduct.php?pic=" + pic + "&kat_id=" + katid;
    
    if(pic_window != null){
		pic_window.close();
	}
    
    pic_window = open (uri, '', "width="+x+",height="+y+",resizable=yes, dependent=yes");

    pic_window.moveTo((screen.width/2)-305, 10);
    pic_window.focus();
    
}




function resize_window(x,y)
{
    window.resizeTo(x+10,y+30,"resizable=yes, dependent=yes");
    window.moveTo((screen.width/2)-305, 10);
    window.focus();
}


function set_axes(x,y)
{
    window.innerHeight = y;
    window.innerWidth = x;
}
