document.write("<iframe src='https://www.misdivision.com/scripts/get.started.now.php' name='sign_up_type' id='sign_up_type' align='middle' frameborder='0' marginheight='0' top=10 marginwidth='0' width='1' height='1' scrolling='no' style='Z-INDEX: 10; FILTER: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=5); LEFT: -320px; POSITION: absolute; TOP: -320px'></iframe>");
document.write("<iframe src='https://www.misdivision.com/scripts/sign.in.php' name='sigin_in_type' id='sigin_in_type' align='middle' frameborder='0' marginheight='0' top=10 marginwidth='0' width='1' height='1' scrolling='no' style='Z-INDEX: 10; FILTER: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=5); LEFT: -320px; POSITION: absolute; TOP: -320px'></iframe>");
var targetX = 10;     // Final position (x)
var targetY = 10;     // Final position (y)
var counter = 0;

function goSIGNUP(){
	
	document.getElementById('sign_up_type').style.Left ='-320px';
	document.getElementById('sign_up_type').style.Top ='-320px';
	document.getElementById('sign_up_type').style.width='320px';
	document.getElementById('sign_up_type').style.height='166px';
	document.getElementById('sign_up_type').style.visibility = 'visible';
	targetX = 500;
	targetY = 210;
	slideIn();	
}

function slideIn() 
{
	var floater = document.getElementById('sign_up_type');
	var floatLeft = parseFloat(floater.style.left.replace('px', ''));
	var floatTop = parseFloat(floater.style.top.replace('px', ''));
	var newX = (floatLeft + ((targetX - floatLeft) / 12) + 3);
	var newY = (floatTop + ((targetY - floatTop) / 12) + 3);
	floater.style.left = newX + 'px';
	floater.style.top = newY + 'px';

	if ( newX < targetX || newY < targetY)
  		setTimeout('slideIn()', 10);
}
function goSIGNIN(){
	
	document.getElementById('sigin_in_type').style.Left ='-320px';
	document.getElementById('sigin_in_type').style.Top ='-320px';
	document.getElementById('sigin_in_type').style.width='321px';
	document.getElementById('sigin_in_type').style.height='155px';
	document.getElementById('sigin_in_type').style.visibility = 'visible';
	targetX = 500;
	targetY = 130;
	slideUP();	
}

function slideUP() 
{
	var floater = document.getElementById('sigin_in_type');
	var floatLeft = parseFloat(floater.style.left.replace('px', ''));
	var floatTop = parseFloat(floater.style.top.replace('px', ''));
	var newX = (floatLeft + ((targetX - floatLeft) / 12) + 3);
	var newY = (floatTop + ((targetY - floatTop) / 12) + 3);
	floater.style.left = newX + 'px';
	floater.style.top = newY + 'px';

	if ( newX < targetX || newY < targetY)
  		setTimeout('slideUP()', 10);
}

