///////////////////////////////////////////////////////////////////////////////////////////////////////////////////~
// This code contains a function for each different size popup
// To create a new popup size, just copy and past the code, rename the function and adjust the settings
//
// Make sure that this is placed in the document <head>
// <SCRIPT type="text/javascript" src="http://webfuel.technicallead.com/js/popups.js"></SCRIPT>
//
// And, 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 Video Samples on Product Pages
function popitupVIDEO(url) {
	newwindow=window.open(url,'name','height=560,width=660,top=100,left=350,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}

// Popup being used for larger window
function popitupVIDEOLG(url) {
	newwindow=window.open(url,'name','height=650,width=780,top=10,left=10,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}
	
// Popup being used for Super larger window
function popitupVIDEOSLG(url) {
	newwindow=window.open(url,'name','height=705,width=927,top=10,left=10,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}

// Popup being used for Very Super larger window
function popitupVIDEOVSLG(url) {
	newwindow=window.open(url,'name','height=800,width=1050,top=10,left=10,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}

// Popup being used for Double Very Super larger window
function popitupVIDEODVSLG(url) {
	newwindow=window.open(url,'name','height=800,width=1050,top=10,left=10,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}
	
	
// Popup being used for ProfitFormula videos 
function popitupVIDEOPF(url) {
	newwindow=window.open(url,'name','height=600,width=800,top=10,left=10,scrollbars=no');
	if (window.focus) {newwindow.focus()}
	return false;
	}
