function PopupAndRedirect(wUrl, sUrl, title, width, height)
{
	var myWindow;
	myWindow=window.open(sUrl, title ,'scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
	window.location = wUrl;
}
