Is it possible to style a contact form popup to look more like a modal, with a centered display and dark transparent background that fades when clicked? Currently, my contact form triggers a browser alert/popup using this script: http://jsfiddle.net/xf4C6/
function fcheckf(){
var x = document.getElementById('check').value;
if(x == 0)
{
return false;
}
else
{
alert("Your message has been sent! Thank you for getting in touch.");
}
}