function OpenPrint (file)
{
	width = 650;
	height = 500;
	leftmargin = 100;
	topmargin = 50;
	statusbar = "no";
	toolbar = "yes";
	menubar = "yes";
	title = "printing";
    window.open(file,title,'width='+width+',height='+height+',left='+leftmargin+',top='+topmargin+',scrollbars=yes,status='+statusbar+',toolbar='+toolbar+',menubar='+menubar);
}

function ShowImage (file)
{
	width = 400;
	height = 400;
	leftmargin = 100;
	topmargin = 100;
	statusbar = "no";
	toolbar = "no";
	menubar = "no";
	scrollbars = "yes";
	title = "image";
	if (file) {
		 window.open('./tpl/user/image_popup.html?file='+file,title,'width='+width+',height='+height+',left='+leftmargin+',top='+topmargin+',scrollbars='+scrollbars+',status='+statusbar+',toolbar='+toolbar+',menubar='+menubar);
	} else {
		return false;
	}    
}
