 var left=400;
 var top=300;

// var left=screen.width/2;
// var top=screen.height/2;

function editCompanyName(userID)
{
newwindow=window.open("../useradmin/editCompanyName.php?userID="+userID,"name","scrollbars=yes,height=150,width=400,top="+(top-150)+",left="+(left-200)+"");
	if (window.focus)
	{
		newwindow.focus();
	}
}
function editEmail(userID)
{
newwindow=window.open("../useradmin/editEmail.php?userID="+userID,"name","scrollbars=yes,height=130,width=400,top="+(top-60)+",left="+(left-200)+"");
	if (window.focus)
	{
		newwindow.focus();
	}
}

function editOurWebsite(userID)
{
newwindow=window.open("../useradmin/editOurWebsite.php?userID="+userID,"name","scrollbars=yes,height=130,width=400,top="+(top-60)+",left="+(left-200)+"");
	if (window.focus)
	{
		newwindow.focus();
	}
}

function editCompanyContact(userID)
{
newwindow=window.open("../useradmin/editCompanyContact.php?userID="+userID,"name","scrollbars=yes,height=300,width=400,top="+(top-150)+",left="+(left-200)+"");
	if (window.focus)
	{
		newwindow.focus();
	}
}

function editPageContents(userID, type)
{
	
	if(type == 'normal')
	{
	newwindow=window.open("../useradmin/editPageContents.php?userID="+userID+"&type="+type,"name","scrollbars=yes,height=400,width=600,top=100,left=100");
	}
	else
	{
	newwindow=window.open("../useradmin/editPageContents.php?userID="+userID+"&type="+type,"name","scrollbars=yes,height=700,width=900,top=10,left=100");
	}
	if (window.focus)
	{
		newwindow.focus();
	}
}

function updateImage(userID,imgNo)
{
	newwindow=window.open("../useradmin/updateImage.php?userID="+userID+"&imgNo="+imgNo,"name","scrollbars=yes,height=300,width=400,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
}

function updateHeaderImage(userID)
{
	newwindow=window.open("../useradmin/updateHeaderImage.php?userID="+userID,"name","scrollbars=yes,height=300,width=400,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
}

function updateLeftImage(userID)
{
	newwindow=window.open("../useradmin/updateLeftImage.php?userID="+userID,"name","scrollbars=yes,height=300,width=400,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
}

function deleteImage(userID,imgNo)
{
	newwindow=window.open("../useradmin/deleteImage.php?userID="+userID+"&imgNo="+imgNo,"name","scrollbars=yes,height=300,width=400,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
}


function updateProducts(userID)
{
	newwindow=window.open("../useradmin/updatePageProducts.php?userID="+userID,"name","scrollbars=yes,height=400,width=600,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
}

function doMap(userID,branchID)
{
	
	newwindow=window.open("../doMap.php?userID="+userID+"&branchID="+branchID,"name","scrollbars=yes,height=250,width=400,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
	
	}
function sendEmail(userID)
{
	newwindow=window.open("../sendEmail.php?userID="+userID,"name","scrollbars=yes,height=300,width=500,top=100,left=100");
	
	if (window.focus)
	{
		newwindow.focus();
	}
	
}
