// JavaScript Document

//Popup Window Script
//By JavaScript Kit (http://javascriptkit.com)
//JavaScript tutorials and over 400+ free scripts

function openpopup(url,wdth,hth){
var popurl=url
var wide=wdth
var ht=hth

winpops=window.open(popurl,"",wide,ht)
}
