function showroom(i){
	window.document.flashmap.SetVariable("tmproom", i);
	window.document.flashmap.Play();
}
function changecam(i){
	parent.cameraframe.document.cam.SetVariable("newcam", "R" + i);
	parent.cameraframe.document.cam.Play();
}
function copyToClipboard(objectID) 
{   
    if(!document.all){
        alert("Internet Explorer only.");
        return false;
    }
    Copied = objectID.createTextRange();
    Copied.execCommand("RemoveFormat");
    Copied.execCommand("Copy");
    alert("Erfolg.");
    return false;
}