Follow the steps below to INSTALL A POPUP WINDOW
STEP ONE: Copy this code into the HEAD of your HTML document
- Code: Select all
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,resizable=1,width=1024,height=768,left = 0,top = 0');");
}
</script>
STEP TWO: Paste this into the BODY tag
- Code: Select all
<BODY onLoad="javascript:popUp('http://www.kidu.info')">




