// JavaScript Document
window.onload = demoPopUpGenerate;

function demoPopUpGenerate() {
	document.getElementById("redirect").onclick = clickHandler;
	return true;
}

function clickHandler() {
	alert ("This is the clickHandler function");
	window.open ('demoPopUp.html','demo','location=1,status=1,scrollbars=0,toolbar=0,resizable=0
  width=353,height=200');
	return true;

}
