///////////////////////////////////////////////////////////////////////////////////////////////////////////////////~
//
// this is the link code below should be used to call the popup
// <a href="http://yoursite.com/webpage.html" onClick="return popitup('http://yoursite.com/webpage.html')">
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////~

// Tall Popup, sample on LWD.com special-offer.html
function popitup(url) {
	newwindow=window.open(url,'name','height=600,width=450,top=100,left=350,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
	}	

// Popup being used for BW audio player
function popitupAUDIO(url) {
	newwindow=window.open(url,'name','width=500,height=200,left=0,top=0,scrollbars=no,location=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}


