//scripts.js


//variables for javascript email to a friend script:
var sSubject = 'Interesting Web Page on Catanich.com';
var sBody    = 'Hey, thought you might be interested...\n\n Here\'s a page on Catanich.Com that I think you might find interesting.\n\n Catanich is an a leading Internet Marketing services firm offering affordable search engine optimization (SEO), pay-per-click (PPC),\n link building and online advertising services to firms in the Dallas Fort Worth Metroplex.\n\n Here\'s the link to that page: ' + location.href;





//popup
function popup(theURL, Name, popW, popH, scroll) {
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable'
	Win = window.open(theURL, Name, winProp)
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}