<!--

function MorePhotos(productid){
  
  url='http://www.getstrappedin.com/largerimage.asp?pid=' + productid;
  MorePhotosWindow=window.open(url,"newWin","width=500,height=600,toolbar=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes")
  MorePhotosWindow.focus()
} 

var newwindow;
function tellafriendwin(url)
{
	newwindow=window.open(url,'name','height=330,width=360,toolbar=no,menubar=yes,scrollbars=no,copyhistory=no,resizable=no');
	if (window.focus) {newwindow.focus()}
}

This is for feed code copy
var copytoclip=1
function CaptureCode(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
if (document.all&&copytoclip==1){
therange=tempval.createTextRange()
therange.execCommand("Copy")
window.status="Contents highlighted and copied to clipboard!"
setTimeout("window.status=''",2400);
}
}

START Form validation for JS syndication
function formValidation(form){
if(notEmpty(syndicationsignup.name)){
if(notEmpty(syndicationsignup.email)){
if(notEmpty(syndicationsignup.website)){
return true;
}
}
return false;
}
function notEmpty(elem){
var str = elem.value;
if(str.length == 0){
alert("You must fill in all required fields (*)");
return false;
} else {
return true;
}
}
END Form validation for JS syndication



-->