


function ch_iframe_this(VAL){
		
	document.getElementById("main_frame").src = VAL
		
}

function ch_iframe(VAL){
	if(VAL == 1){
		parent.document.getElementById("main_frame").src = "featured.php"
	}
	if(VAL == 2){
		parent.document.getElementById("main_frame").src = "item.php"
	}
	if(VAL == 3){
		parent.document.getElementById("main_frame").src = "blog.php"
	}
	if(VAL == 4){
		parent.document.getElementById("main_frame").src = "aboutus.php"
	}
	if(VAL == 5){
		parent.document.getElementById("main_frame").src = "link.php"
	}
	if(VAL == "cart"){
		parent.document.getElementById("main_frame").src = "cart.php"
	}
}

function imgChange(NO,IMG){
		
		document.getElementById(NO).src = IMG;
		
	}
	
	
	function img_popup_h(NO){
		main_id = NO;
		//img_path = document.getElementById(main_id).src;
		img_path = 'up_img/'+NO;
		W = 500; H = 660;
		X = (screen.width - W);
		Y = (screen.height - H);
		WIN_PROP = 'left='+X+',top=0,width='+W+',height='+H;
		sub_win = window.open(img_path,"sub_win",WIN_PROP);
		sub_win.focus();
		
	}
	
	
	function img_popup_w(NO){
		main_id = NO;
		//img_path = document.getElementById(main_id).src;
		img_path = 'up_img/'+NO;
		W = 660; H = 500;
		X = (screen.width - W);
		Y = (screen.height - H);
		WIN_PROP = 'left='+X+',top=0,width='+W+',height='+H;
		sub_win = window.open(img_path,"sub_win",WIN_PROP);
		sub_win.focus();
		
	}
	
	function order_on(NO){
		ID = "order_"+NO;
		document.getElementById(ID).src = 'img/order_on.gif';
		
	}
	
	function order_out(NO){
		ID = "order_"+NO;
		document.getElementById(ID).src = 'img/order_out.gif';
		
	}
	
