function fnCompose(str1,str2,el) {
  el.href = 'mailto:' + str1 + '@' + str2;
}

function popupwindow(url){
	newwindow = window.open (url, "mywindow", "menubar=1,resizable=1,toolbar=1, location=1, status=1, scrollbars=1, width="+screen.width+", height="+screen.height+"");
	//newwindow.moveTo(0,0);
	//newwindow.resizeTo(screen.width,screen.height);
}