function emailProtectJavascript(user, domain, name) {
	document.write('<a href="mailto: ' + user + '&#64;' + domain + '">' + name + '</a>');
}

function displayWindow(url, width, height, name) {
	window.open(url,name,'width=' + width + ',height=' + height + ',name="name",resizable=0,scrollbars=no,menubar=no');
}
function displayWindowScroll(url, width, height, name) {
	window.open(url,name,'width=' + width + ',height=' + height + ',name="name",resizable=0,scrollbars=yes,menubar=no');
}
function displayPage(url, name, width, height, scrollvalue) {
	w = window.open(url, name, 'width='+width+', height='+height+', scrollbars='+scrollvalue+', menubar=no, resizable=0');
	w.moveTo(screen.width/2-width/2, screen.height/2-height/2);
}

function no() {
	void(0);
}

function showImg( img_src, img_w, img_h, img_name ) {
	img_w_n = img_w+20;
	img_h_n = img_h+20;
	img_w_o = img_w;
   var popup = window.open('','','width=' + img_w_n + ',height=' + img_h_n + ',resizable=0,scrollbars=no,menubar=no');
   popup.document.open();
   popup.document.write('<html><head><title>'+img_name+'<\/title><\/head>');
   popup.document.write('<body style="margin: 0;padding: 0; position: relative;">');
   popup.document.write('<a href="javascript:window.close();" style="margin: 0 ;border: none; padding: 0;"><img style="margin: 0;border: 10px solid #eeeeee;padding: 0;" src=' + img_src + ' /></a>');
   popup.document.write('<\/body><\/html>');
//   popup.document.focus();
   popup.document.close();
}

