// JavaScript Document
function mouseOverBig(src)  {
  src.style.textDecoration='underline';
  src.style.cursor='hand';
}

function mouseOutBig(src)  {
  src.style.textDecoration='';
  src.style.cursor='default';
}

var strDomain = document.domain;
//var strProtocol = "https://";
var strProtocol = "http://";

function openMember()  {
  if (screen.width>=1024)  {
    window.open(strProtocol + strDomain + "/login.php", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height=682")
  }
  else  {
    alert('#1 Please change your monitor resolution to at least 1024x768 before you can log into Diary Online.');
  }
}

function openMemberAjax()  {
  if (screen.width>=1024)  {
    //window.open(strProtocol + strDomain + "/login/login_ajax.php", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height=682")
	if(navigator.userAgent.indexOf("6.0")>=0)  {
	  windowHeight=682;
	}
	else  {
	  windowHeight=662;
	}
	window.open("login/login_ajax.php", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height="+windowHeight);
  }
  else  {
    alert('#2 Please change your monitor resolution to at least 1024x768 before you can log into DiaryOnline.');
  }
}

function openSeller()  {
  //window.open(strProtocol + strDomain + "/sellerLogin.php", "Client", "")
  window.open("http://www.sellers.com.au", "Client", "")
}

function launchDiaryonline()  {
var width = screen.width;
var height = screen.height;

if((navigator.userAgent.match(/iPad/i))) {
	var width = 1024;
	var height = 768;
}

if (typeof(screen.deviceXDPI) == 'number') {
width *= screen.deviceXDPI/screen.logicalXDPI;
}

  if (width>=1024)  {
    //window.open(strProtocol + strDomain + "/login/login_ajax.php", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height=682")
	//window.open("login/member_login", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height=660");
	window.open("login/diaryonline", "Member", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=no,resizable=no,screenX=0,screenY=0,left=0,top=0,width=1014,height=660");
  }
  else  {
alert(height);
    alert('#3 Please change your monitor resolution to at least 1024x768 before you can log into DiaryOnline.');
  }
}
