';
function openPopunder(){
w = window.open('','','scrollbars=yes,resizable=yes,width=300,height=300');
w.document.write(popUnderScript);
self.focus();
}
openPopunder();
function sendToAFriendCheck() {
if (isSendtoAFriendYourEmail('sendToAFriend') && isSendtoAFriendFriendEmail('sendToAFriend') && isSendtoAFriendContent('sendToAFriend'))
return true;
else
return false;
}
function isSendtoAFriendYourEmail(formName) {
var emailString = document.forms[formName].sender.value;
var emailFilter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
if (document.forms[formName].sender.value == "") {
alert ("\n No Sender Email entered!");
document.forms[formName].sender.focus();
return false;
}
else if (!emailFilter.test(emailString)) {
alert ("\n We are sorry, an error has occured. \n\n Your email address appears to be incorrect.");
document.forms[formName].sender.focus();
return false;
}
return true;
}
function isSendtoAFriendFriendEmail(formName) {
var emailString = document.forms[formName].recepient.value;
var emailFilter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
if (document.forms[formName].recepient.value == "") {
alert ("\n No Recepient Email entered!");
document.forms[formName].recepient.focus();
return false;
}
else if (!emailFilter.test(emailString)) {
alert ("\n We are sorry, an error has occured. \n\n Your email address appears to be incorrect.");
document.forms[formName].recepient.focus();
return false;
}
return true;
}
function isSendtoAFriendContent(formName) {
if (document.forms[formName].content.value == "") {
alert ("\n You didn't entered any Content. \n\n");
document.forms[formName].content.focus();
return false;
}
return true;
}
function pornostarsCheck() {
if (isPornoStarChoosen('pornostars') && isPornoStarName('pornostars') && isPornoStarEmail('pornostars') && isPornoStarMessage('pornostars') && isPornoStarLanguage('pornostars') && isPornoStarCountry('pornostars'))
return true;
else
return false;
}
function isPornoStarChoosen(formName) {
if (document.forms[formName].star.selectedIndex < 1) {
alert ("No Porno Star Choosen!");
document.forms[formName].star.focus();
return false;
}
return true;
}
function isPornoStarName(formName) {
if (document.forms[formName].username.value == "") {
alert ("\n You didn't entered your Name. \n\n Please, enter your Name.");
document.forms[formName].username.focus();
return false;
}
return true;
}
function isPornoStarEmail(formName) {
var emailString = document.forms[formName].email.value;
var emailFilter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
if (document.forms[formName].email.value == "") {
alert ("\n We are sorry, an error has occured. \n\n Please fill in your email address.");
document.forms[formName].email.focus();
return false;
}
else if (!emailFilter.test(emailString)) {
alert ("\n We are sorry, an error has occured. \n\n Your email address appears to be incorrect.");
document.forms[formName].email.focus();
return false;
}
return true;
}
function isPornoStarMessage(formName) {
if (document.forms[formName].content.value == "") {
alert ("\n You didn't entered any Content. \n\n");
document.forms[formName].content.focus();
return false;
}
return true;
}
function isPornoStarLanguage(formName) {
if (document.forms[formName].language.selectedIndex < 1) {
alert ("\n No Language choosen!");
document.forms[formName].language.focus();
return false;
}
return true;
}
function isPornoStarCountry(formName) {
if (document.forms[formName].country.selectedIndex < 1) {
alert ("\n No Country choosen!");
document.forms[formName].country.focus();
return false;
}
return true;
}
function newslettersCheckEmail() {
var emailString = document.forms['newsletters'].email.value;
var emailFilter = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
if (document.forms['newsletters'].email.value == "") {
alert ("\n We are sorry, an error has occured. \n\n Please fill in your email address.");
document.forms['newsletters'].email.focus();
return false;
}
else if (!emailFilter.test(emailString)) {
alert ("\n We are sorry, an error has occured. \n\n Your email address appears to be incorrect.");
document.forms['newsletters'].email.focus();
return false;
}
return true;
}
function alertF(str,obj,mode){
alert(str);
if(!obj.length){
obj.focus();
if(typeof(obj)=='text' || typeof(obj)=='password')obj.select();
}else{
obj[0].focus();
if(typeof(obj[0])=='text'|| typeof(obj[0])=='password')obj[0].select();
}
if(mode==0)return;
else return false;
}
function isEmail(argvalue) {
if (argvalue.indexOf(" ") != -1) return false
else if (argvalue.indexOf("@") == -1) return false
else if (argvalue.indexOf("@") == 0) return false
else if (argvalue.indexOf("@") == (argvalue.length-1)) return false
arrayString = argvalue.split("@");
if (arrayString[1].indexOf(".") == -1) return false
else if (arrayString[1].indexOf(".") == 0) return false
else if (arrayString[1].charAt(arrayString[1].length-1) == ".") return false
return true
}
function isEmpty(s){
var i;
if(isEmpty.arguments.length < 1)return true;
if (!s.length) return true;
for (i=0; i < s.length; i++)
if(s.charAt(i)!=" ")return false;
return true;
}
function isInteger(i){
var k, l, m;
if(!i.length) return false;
if(!isNaN(Number(i))){
k=i.indexOf('.');
if(k==-1)return true;
}
return false;
}
function isURL(argvalue) {
if (argvalue.indexOf(" ") != -1)
return false;
else if (argvalue.indexOf("http://") == -1)
return false;
else if (argvalue == "http://")
return false;
else if (argvalue.indexOf("http://") > 0)
return false;
argvalue = argvalue.substring(7, argvalue.length);
if (argvalue.indexOf(".") == -1)
return false;
else if (argvalue.indexOf(".") == 0)
return false;
else if (argvalue.charAt(argvalue.length - 1) == ".")
return false;
if (argvalue.indexOf("/") != -1) {
argvalue = argvalue.substring(0, argvalue.indexOf("/"));
if (argvalue.charAt(argvalue.length - 1) == ".")
return false;
}
if (argvalue.indexOf(":") != -1) {
if (argvalue.indexOf(":") == (argvalue.length - 1))
return false;
else if (argvalue.charAt(argvalue.indexOf(":") + 1) == ".")
return false;
argvalue = argvalue.substring(0, argvalue.indexOf(":"));
if (argvalue.charAt(argvalue.length - 1) == ".")
return false;
}
return true;
}function exitBanners(bannersAction, windowTitle, windowWidth, windowHeight, bannerAlttext, bannerUrl, bannerSrc) {
if (bannersAction) {
wndb = open('', windowTitle, 'width='+windowWidth+',height='+windowHeight+',scrollbars=no,resizable=no,status=no,toolbar=no,location=no,menubar=no');
wndb.document.write('
'+windowTitle+'');
wndb.document.write('');
wndb.document.write('');
wndb.document.write('
');
wndb.document.write('');
wndb.document.write('');
wndb.document.write('');
}
}
function setAsHomepage(obj) {
var url = 'http://www.missfrancesex.com';
var ms = navigator.appVersion.indexOf("MSIE");
var ie5 = (ms > 0) && (parseInt(navigator.appVersion.substring(ms + 5, ms + 7)) >= 5);
if (ie5) {
obj.style.behavior = 'url(#default#homepage)';
obj.setHomePage(url);
}
else
window.alert("Your Browser doesn´t support this action!");
}
function addToFavorites() {
var site_host = 'http://www.missfrancesex.com';
var site_title = 'Jfsexy ....';
var ms = navigator.appVersion.indexOf("MSIE");
var ie5 = (ms > 0) && (parseInt(navigator.appVersion.substring(ms + 5, ms + 7)) >= 5);
if (ie5)
window.external.AddFavorite(site_host, site_title);
else
window.alert("Your Browser doesn´t support this action!");
}
//-->