// Pass the input to the subModal window
function postPopWin (url, width, height, returnFunc, showCloseBox) {
	var x=document.getElementsByTagName("input");
	var s="";
	var t="?";
	for (var i=0;i<x.length;i++)
	{
		s = s + t + x[i].attributes.getNamedItem("name").value + "=" + x[i].attributes.getNamedItem("value").value;
		t="&";
	}
	showPopWin(url + s, width, height, returnFunc, showCloseBox);
}