/*==============================================================================

    File: mobile_phone.js
	
	Description: Send a wallpaper to a mobile phone.
	
	Author: Mark Hansgate
	
	Date: 3rd April 2005

==============================================================================*/

function sendImage() {
  
  var imageObj = document.getElementById("wallpaper");
  
  if (imageObj == null) {
    alert('Sorry, there is a problem with this image which means it cannot currently be sent to your mobile.');
	
	return;
  }
  
  window.open('http://mpush.msolutions.cc/req.php?account=hansgatewallpapers&image=' + imageObj.src + '&caption=' + document.title + '','_MPUSH','width=640,height=420,titlebar=1,resizable=1,scrollbars=0');

  return;

}