function open_win(fileName, wheight, wwidth){
	var nowdate1 = new Date();
	var winid = nowdate1.getSeconds() + nowdate1.getMinutes() + nowdate1.getHours();
	popbox = window.open(fileName,"NewWindow" + winid,"resizable=yes,toolbar=no,scrollbars=no,directories=no,menubar=no,width=" + wwidth + ",height=" + wheight);
	if(popbox !=null){
		popbox.focus();
		if (popbox.opener==null){
			popbox.opener=self;
		}
	}
}

function open_image(fileName, wheight, wwidth){
	var win = window.open('','','width=' + wwidth + ',height=' + wheight);
	win.document.writeln("<html><head><title>Nestle Pure Life</title></head>");
	win.document.writeln("<body style=\"margin:0px;padding:0px;\"><img src=\""+fileName+ "\" border=0></body></html>");
	win.document.close();
}


function open_winasc(fileName, wheight, wwidth){
	var nowdate1 = new Date();
	var winid = nowdate1.getSeconds() + nowdate1.getMinutes() + nowdate1.getHours();
	popbox = window.open(fileName,"NewWindow" + winid,"resizable=no,toolbar=no,scrollbars=no,directories=no,menubar=no,width=" + wwidth + ",height=" + wheight + ",left=150,top=150");
	if(popbox !=null){
		popbox.focus();
		if (popbox.opener==null){
			popbox.opener=self;
		}
	}
}

