$(document).ready(function(){

	function open_window(link, title, width, height){
	    WREF = window.open(link, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height);
		if(!WREF.opener)
		{
			WREF.opener = this.window;
		}
	}
	
	$("#but_mail").click(function(){
		open_window("index.php?page=" + stf_pop_alias, '', 460, 350);
		
	});	
});
