
var checkWindow = "";

function popUP(txtBoxID){
	var url = "SpellChecker.asp";
	
	url = url + "?ID=" + txtBoxID;

	if(!checkWindow.closed && checkWindow.location)
	{
		checkWindow.location.href = url;
	}
	else
	{
		checkWindow=window.open(url,"name","height=320,width=370,resizable=yes,left=10,top=10");
		if(!checkWindow.opener) checkWindow.opener = self;
	}

	if(window.focus) {checkWindow.focus()}
	
	return false;
}