var win;

function winopen(url){
	
	win = window.open(url, "newwin", "width=400,height=300");

}

function winclose_link(url){
	
	window.opener.location.href = url;
	window.close();
	
}