Posts Tagged ‘popup’

Popup window

This item was filled under [ JavaScript ]

Use this function to popup a window

function popitup(url)
{
newwindow=window.open(url,’name’,'height=500,width=500′);
if (window.focus)
{
newwindow.focus()
}
return false;
}

Continue reading...

Tagged with: [ , , ]
Update me when site is updated